home *** CD-ROM | disk | FTP | other *** search
/ CICA 1993 April / CICA MS Windows - April 1993.iso / unzipped / programr / textview / demo / defines.h < prev    next >
Text File  |  1991-06-13  |  1KB  |  35 lines

  1. /*****************************************************************************
  2.  
  3.     defines.h
  4.     ---------
  5.  
  6.     Global defines for the TextView DLL demonstatration application
  7.  
  8.     This source is Copyright (c) Alan Phillips 1991. It may be freely used
  9.     and adapted for non-commercial applications. Commercial and ShareWare
  10.     authors should first obtain the written permission of the author.
  11.  
  12.     The source is edited with a tab size of 4.
  13.  
  14. *****************************************************************************/
  15.  
  16.  
  17. /* This line defines how large you many lines you want to be stored in the
  18. *  TextView window's circular buffer. When this buffer fills, the next message
  19. *  will replace the oldest, and so on. The largest value you can specify is
  20. *  4096
  21. */
  22.  
  23. #define    TRW_SIZE    2000
  24.  
  25. /* If you want to use a specific font in the TextView window, you should
  26. *  uncomment this next line and define the symbol. The CreateFont code in the
  27. *  start_tracing() routine below will then be compiled, and you can edit this
  28. *  to select whichever font you require. With the line below commented out,
  29. *  the system font will be used.
  30. */
  31.  
  32. /* #define    OWN_FONT */
  33.  
  34.  
  35.